home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / time.prerm < prev    next >
Text File  |  2008-08-07  |  750b  |  37 lines

  1. #!/bin/sh
  2. #
  3. # This is the prerm script for the Debian GNU/Linux time package
  4. #
  5. # Written by Dirk Eddelbuettel <edd@debian.org>   
  6.  
  7. set -e
  8.  
  9. # Automatically added by dh_installdocs
  10. if [ "$1" = remove ] || [ "$1" = upgrade ] && \
  11.    which install-docs >/dev/null 2>&1; then
  12.     install-docs -r time
  13. fi
  14. # End automatically added section
  15. # Automatically added by dh_installdocs
  16. if [ "$1" = remove ] || [ "$1" = upgrade ] && \
  17.    which install-docs >/dev/null 2>&1; then
  18.     install-docs -r time
  19. fi
  20. # End automatically added section
  21.  
  22.  
  23. case "$1" in
  24.     upgrade)
  25.     ;;
  26.     remove|purge)
  27.     install-info --quiet --remove time
  28.     ;;
  29.     failed-upgrade|abort-install|abort-upgrade|disappear)
  30.     ;;
  31.     *)
  32.     echo "prerm called with unknown argument \`$1'" >&2
  33.     ;;
  34. esac
  35.  
  36. exit 0
  37.